Tables [dbo].[MatchingGiftPlanFundType]
Properties
PropertyValue
Row Count0
Created10:31:27 AM Tuesday, March 02, 2010
Last Modified1:17:33 PM Thursday, February 23, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_MatchingGiftPlanFundType: MatchingGiftPlanFundTypeKeyMatchingGiftPlanFundTypeKeyuniqueidentifier16
No
Foreign Keys FK_MatchingGiftPlanFundType_MatchingGiftPlan: [dbo].[MatchingGiftPlan].MatchingGiftPlanKeyIndexes IX_MatchingGiftPlanFundType_MatchingGiftPlanKey: MatchingGiftPlanKeyMatchingGiftPlanKeyuniqueidentifier16
No
Foreign Keys FK_MatchingGiftPlanFundType_FundTypeRef: [dbo].[FundTypeRef].FundTypeKeyIndexes IX_MatchingGiftPlanFundType_FundTypeKey: FundTypeKeyFundTypeKeyuniqueidentifier16
No
MarkedForDeleteOndatetime8
Yes
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_MatchingGiftPlanFundType: MatchingGiftPlanFundTypeKeyPK_MatchingGiftPlanFundTypeMatchingGiftPlanFundTypeKey
Yes
IX_MatchingGiftPlanFundType_FundTypeKeyFundTypeKey
IX_MatchingGiftPlanFundType_MatchingGiftPlanKeyMatchingGiftPlanKey
Foreign Keys Foreign Keys
NameColumns
FK_MatchingGiftPlanFundType_FundTypeRefFundTypeKey->[dbo].[FundTypeRef].[FundTypeKey]
FK_MatchingGiftPlanFundType_MatchingGiftPlanMatchingGiftPlanKey->[dbo].[MatchingGiftPlan].[MatchingGiftPlanKey]
SQL Script
CREATE TABLE [dbo].[MatchingGiftPlanFundType]
(
[MatchingGiftPlanFundTypeKey] [uniqueidentifier] NOT NULL,
[MatchingGiftPlanKey] [uniqueidentifier] NOT NULL,
[FundTypeKey] [uniqueidentifier] NOT NULL,
[MarkedForDeleteOn] [datetime] NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[MatchingGiftPlanFundType] ADD CONSTRAINT [PK_MatchingGiftPlanFundType] PRIMARY KEY CLUSTERED ([MatchingGiftPlanFundTypeKey]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_MatchingGiftPlanFundType_FundTypeKey] ON [dbo].[MatchingGiftPlanFundType] ([FundTypeKey]) ON [PRIMARY]
GO
CREATE NONCLUSTERED INDEX [IX_MatchingGiftPlanFundType_MatchingGiftPlanKey] ON [dbo].[MatchingGiftPlanFundType] ([MatchingGiftPlanKey]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[MatchingGiftPlanFundType] ADD CONSTRAINT [FK_MatchingGiftPlanFundType_FundTypeRef] FOREIGN KEY ([FundTypeKey]) REFERENCES [dbo].[FundTypeRef] ([FundTypeKey])
GO
ALTER TABLE [dbo].[MatchingGiftPlanFundType] ADD CONSTRAINT [FK_MatchingGiftPlanFundType_MatchingGiftPlan] FOREIGN KEY ([MatchingGiftPlanKey]) REFERENCES [dbo].[MatchingGiftPlan] ([MatchingGiftPlanKey])
GO
Uses